* {
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  /* background:url(http://img.tapatalk.com/d/12/10/31/6yby7usy.jpg) center center; */
}

/*  CSS for Register Button on Main Page  */


@import url("//fonts.googleapis.com/css?family=Roboto:500");
@import url("//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css");


.face-button {
  height: 64px;
  width:250px;
  display: inline-block;
  border: 2px solid #3069b1 ;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  color: #e43;
  overflow: hidden;
}
.face-button .icon {
  margin-right: 6px;
}
.face-button .face-primary,
.face-button .face-secondary {
  display: block;
  padding: 0 32px;
  line-height: 64px;
  transition: margin .4s;
  color:#fff;
}
.face-button .face-primary {
  background-color:#3069b1;
  color: #ffffff;
}
.face-button:hover .face-primary {
  margin-top: -64px;
}


/* end for register button CSS */


/* Outer */
.popup {
	width:100%;
	height:100%;
	display:none;
	position:fixed;
	top:0px;
	left:0px;
	background:rgba(0,0,0,0.75);
	z-index:10;
}

/* Inner */ /* pop up css */
.popup-inner {
	max-width:500px;
	width:90%;  
/*	padding:40px; */
	position:absolute;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%, -50%);
	transform:translate(-50%, -50%);
	box-shadow:0px 2px 6px rgba(0,0,0,1);
	border-radius:3px;
	background:#fff;
	
}

/* Close Button */
.popup-close {
	width:30px;
	height:30px;
	padding-top:4px;
	display:inline-block;
	position:absolute;
	top:0px;
	right:0px;
	transition:ease 0.25s all;
	-webkit-transform:translate(50%, -50%);
	transform:translate(50%, -50%);
	border-radius:1000px;
	background:rgba(0,0,0,0.8);
	font-family:Arial, Sans-Serif;
	font-size:20px;
	text-align:center;
	line-height:100%;
	color:#fff;
}

.popup-close:hover {
	-webkit-transform:translate(50%, -50%) rotate(180deg);
	transform:translate(50%, -50%) rotate(180deg);
	background:rgba(0,0,0,1);
	text-decoration:none;
}

/* END pop up css */



label {
  margin-bottom: 10px;
  display: block;
}


#regForm {
  background-color: #ffffff;
   border-radius: 3px;
  box-shadow: 0 17px 41px -21px rgb(0, 0, 0);
   border-top: 9px solid rgb(38, 106, 173);
  box-sizing: border-box;
  
 /* margin: 80px 0PX 10PX 20PX; */
  font-family: 'Raleway';
  padding: 15px;
/*  width: 35%; */
  min-width: 250px;
}

h2 {
  text-align: center;  
   color: rgb(38, 106, 173); 
   font-family: "Times New Roman", Times, serif;
   font-size: 30px; 
   font-weight: 100; 
   line-height: 50px; 
   letter-spacing: 1px; 
   padding: 0 0 5px; 
   border-bottom: double rgb(38, 106, 173); 


}

h3 
{ color: #111; 
font-family: 'Open Sans', sans-serif; 
font-size: 17px; font-weight: 300; 
line-height: 32px; 
margin: 0 0 72px; 
text-align: center; 
}

input {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: "Times New Roman", Times, serif;
  border: 1px solid #aaaaaa;
}

select{
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #aaaaaa;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

button {
  background-color:rgb(38, 106, 173);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-family: Raleway;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

#prevBtn {
  background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: rgb(38, 106, 173);
  border: none;  
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #4CAF50;
}




/*for validation */

	#contact label{
			display: inline-block;
			width: 100px;
			text-align: right;
		}
		#contact_submit{
			padding-left: 100px;
		}
		#contact div{
			margin-top: 1em;
		}
		textarea{
			vertical-align: top;
			height: 5em;
		}
			
		.error{
			display: none;
			margin-left: 10px;
		}		
		
		.error_show{
			color: red;
			margin-left: 10px;
		}
		
		input.invalid, textarea.invalid{
			border: 2px solid red;
		}
		
		input.valid, textarea.valid{
			border: 2px solid green;
		}
		
		/*end validation




